home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48_1 / grob.men < prev    next >
Text File  |  1995-03-23  |  1KB  |  36 lines

  1. Article 4650 of comp.sys.handhelds:
  2. Path: en.ecn.purdue.edu!noose.ecn.purdue.edu!samsung!think.com!mintaka!snorkelwacker.mit.edu!shelby!msi.umn.edu!noc.MR.NET!gacvx2.gac.edu!hhdist
  3. From: EBERBERS%yubgef51@pucc.PRINCETON.EDU (____ Zarko Berberski ____)
  4. Newsgroups: comp.sys.handhelds
  5. Subject: RE: Menu lablels on the 48sx
  6. Message-ID: <B1E980C0611F005429@yubgef51>
  7. Date: 28 Feb 91 18:03:33 GMT
  8. Lines: 20
  9. Return-path: <@pucc.PRINCETON.EDU:EBERBERS@yubgef51>
  10. To: handhelds@gac.edu
  11. X-VMS-To: IN%"handhelds@gac.edu"
  12.  
  13. > Here's one way to do it.  It's not the best way, as the process can be
  14. > automated.  But it works.
  15.  
  16.       Here it is - a little program that "converts" a string to a
  17. GROB fom menu-label - it actually produces icon for subdirectory
  18. but you can easily edit the GROB inside the program if you would
  19. like a different shape.
  20.  
  21.  
  22. %%HP: T(3)A(D)F(.);
  23. DIR
  24.  
  25.   S\->MENU    @ (string - GROB) - dir-like icon
  26.  
  27.     \<< 1 \->GROB
  28. GROB 21 8 E30000FFFFF1FFFFF1FFFFF1FFFFF1FFFFF1FFFFF1FFFFF1
  29. { # 3d # 2d } ROT
  30. GXOR
  31.     \>>
  32.  
  33. END
  34.  
  35.  
  36.